home *** CD-ROM | disk | FTP | other *** search
- package icontrols.DataList;
-
- import com.ms.wd.app.Message;
- import com.ms.wd.ui.Control;
- import com.ms.wd.ui.Edit;
-
- class ComboEdit extends Edit {
- protected void wndProc(Message msg) {
- switch (msg.msg) {
- case 258:
- if (msg.wParam > 31) {
- ((DataCombo)((Control)this).getParent()).processEditChar(msg.wParam);
- } else {
- super.wndProc(msg);
- }
- break;
- case 646:
- ((DataCombo)((Control)this).getParent()).processEditChar(msg.wParam);
- break;
- default:
- super.wndProc(msg);
- }
-
- }
- }
-